Vertical Shading¶

1. Yearly Irradiance and Shading¶

image.png

In [1]:
import os
from pathlib import Path

testfolder = str(Path().resolve().parent / 'TEMP' /  'August')

if not os.path.exists(testfolder):
    os.makedirs(testfolder)
    
print ("Your simulation will be stored in %s" % testfolder)
Your simulation will be stored in C:\Users\sayala\Documents\GitHub\bifacial_radiance\docs\TEMP\August
In [2]:
import bifacial_radiance as br
import numpy as np
import pandas as pd
In [3]:
# This information helps with debugging and getting support :)
import sys, platform
print("Working on a ", platform.system(), platform.release())
print("Python version ", sys.version)
print("Pandas version ", pd.__version__)
print("bifacial_radiance version ", br.__version__)
Working on a  Windows 10
Python version  3.11.4 | packaged by Anaconda, Inc. | (main, Jul  5 2023, 13:38:37) [MSC v.1916 64 bit (AMD64)]
Pandas version  2.1.0
bifacial_radiance version  0.4.2+236.g6801d3d.dirty
In [4]:
testopstelling = br.RadianceObj('x',str(testfolder))

testopstelling.setGround()
albedo = 0.35
testopstelling.setGround(albedo)
path = C:\Users\sayala\Documents\GitHub\bifacial_radiance\docs\TEMP\August

Input albedo 0-1, or string from ground.printGroundMaterials().
Alternatively, run setGround after readWeatherData()and setGround will read metdata.albedo if available
Loading albedo, 1 value(s), 0.350 avg
1 nonzero albedo values.

Make Module:

In [5]:
#2-up landscape
simpleModule = True

moduletype = 'test-module'

num_panels = 2
x = 2
y = 1

x_gap = 0.20
y_gap = 0.10
z_gap = 0

num_cells_x = 12
num_cells_y = 24
x_cell = 0.17283
y_cell = 0.08692
x_cell_gap = 0.002
y_cell_gap = 0.002

cellLevelModuleParams = {'numcellsx': num_cells_y, 'numcellsy': num_cells_x,
                         'xcell': y_cell, 'ycell': x_cell, 'xcellgap': y_cell_gap, 'ycellgap': x_cell_gap}


if simpleModule:
    module = testopstelling.makeModule(name=moduletype, x=x, y=y, numpanels=num_panels,
                                   xgap=x_gap, ygap=y_gap)
else:
    module = testopstelling.makeModule(name=moduletype, x=x, y=y, numpanels=num_panels,
                                   xgap=x_gap, ygap=y_gap, cellModule=cellLevelModuleParams)
Module Name: test-module
Module test-module updated in module.json
Pre-existing .rad file objects\test-module.rad will be overwritten

In [6]:
#epwfile = r'C:/Users/Gebruiker/Downloads/tmy_51.036_2.658_2005_2020 (1).epw'
epwfile = testopstelling.getEPW(lat=33,lon=-110)
metdata = testopstelling.readWeatherFile(epwfile)
Getting weather file: USA_AZ_Safford.AWOS.722747_TMY3.epw
 ... OK!
8760 line in WeatherFile. Assuming this is a standard hourly WeatherFile for the year for purposes of saving Gencumulativesky temporary weather files in EPW folder.
Coercing year to 2021
Saving file EPWs\metdata_temp.csv, # points: 8760
Calculating Sun position for Metdata that is right-labeled  with a delta of -30 mins. i.e. 12 is 11:30 sunpos

Scene parameters

In [8]:
pitch = 9  # m
hub_height = 1.75  # m  2.8m to top; -1 m for module, -0.5 xgap
nMods = 6  # six modules per row.
nRows = 3  # 3 row
azimuth_ang = 270  # Facing west
tilt = 90  # tilt.

sceneDict = {'tilt': tilt, 'pitch': pitch, 'hub_height': hub_height, 'azimuth': azimuth_ang, 'nMods': nMods,
             'nRows': nRows}
In [9]:
testopstelling.genCumSky() # entire year.
Loaded  EPWs\metdata_temp.csv
message: Error!  Solar altitude is -6 < -6 degrees and Idh = 11 > 10 W/m^2 on day 95 !Ibn is 0.  Attempting to continue!
There were 4215 sun up hours in this climate file
Total Ibh/Lbh: 0.000000
Out[9]:
'skies\\cumulative.rad'
In [10]:
scene = testopstelling.makeScene(module=moduletype, sceneDict=sceneDict)
In [11]:
octfile = testopstelling.makeOct(testopstelling.getfilelist()) 
Created x.oct
In [12]:
analysis = br.AnalysisObj(octfile, testopstelling.basename)

Without Frame evaluation¶

In [13]:
frontscan, backscan = analysis.moduleAnalysis(scene, modWanted = 4, rowWanted =2,  sensorsx=12, sensorsy=12)
results = analysis.analysis(octfile, testopstelling.basename+'baseline', frontscan, backscan)
Linescan in process: xbaseline_Row2_Module4_Front
Linescan in process: xbaseline_Row2_Module4_Back
Saved: results\irr_xbaseline_Row2_Module4.csv
Out[13]:
({'Wm2': [1424685.0,
   1446194.0,
   1467704.0,
   1444083.0,
   1468692.0,
   1493300.0,
   1504480.0,
   1527188.0,
   1549896.0,
   1572603.0,
   1605932.0,
   1623777.0,
   1426030.0,
   1434062.0,
   1431835.0,
   1444003.0,
   1465303.0,
   1484822.0,
   1505442.0,
   1533436.0,
   1561945.0,
   1587505.0,
   1605350.0,
   1623195.0,
   1427375.0,
   1439861.0,
   1427504.0,
   1444116.0,
   1465189.0,
   1483868.0,
   1506404.0,
   1534946.0,
   1563054.0,
   1586923.0,
   1604768.0,
   1622614.0,
   1390445.0,
   1412268.0,
   1425566.0,
   1444132.0,
   1463692.0,
   1484658.0,
   1507366.0,
   1536344.0,
   1564955.0,
   1586342.0,
   1604187.0,
   1622032.0,
   1392478.0,
   1414301.0,
   1461002.0,
   1486428.0,
   1511854.0,
   1485620.0,
   1508327.0,
   1537988.0,
   1567915.0,
   1585760.0,
   1603605.0,
   1621451.0,
   1400222.0,
   1433532.0,
   1462399.0,
   1487826.0,
   1513252.0,
   1504988.0,
   1526999.0,
   1549203.0,
   1567333.0,
   1585179.0,
   1603024.0,
   1620869.0,
   1412944.0,
   1438370.0,
   1463796.0,
   1474171.0,
   1483497.0,
   1505604.0,
   1527712.0,
   1549819.0,
   1566752.0,
   1584597.0,
   1602442.0,
   1629398.0,
   1417266.0,
   1436639.0,
   1459838.0,
   1462006.0,
   1484113.0,
   1506220.0,
   1528328.0,
   1550435.0,
   1560714.0,
   1583630.0,
   1606547.0,
   1629463.0,
   1417727.0,
   1436625.0,
   1455522.0,
   1462622.0,
   1484729.0,
   1506836.0,
   1528944.0,
   1556586.0,
   1574879.0,
   1591321.0,
   1606724.0,
   1629528.0,
   1418188.0,
   1437086.0,
   1443953.0,
   1465949.0,
   1487456.0,
   1510827.0,
   1534068.0,
   1556448.0,
   1574952.0,
   1591246.0,
   1606676.0,
   1629592.0,
   1400234.0,
   1422230.0,
   1444226.0,
   1466222.0,
   1488446.0,
   1511551.0,
   1533930.0,
   1556310.0,
   1575711.0,
   1591095.0,
   1606741.0,
   1629657.0,
   1400507.0,
   1422503.0,
   1444499.0,
   1466495.0,
   1489034.0,
   1511413.0,
   1533792.0,
   1556171.0,
   1578550.0,
   1590415.0,
   1606806.0,
   1629722.0],
  'x': [-0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021],
  'y': [-1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154],
  'z': [0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462],
  'r': [1424685.0,
   1446194.0,
   1467704.0,
   1444083.0,
   1468692.0,
   1493300.0,
   1504480.0,
   1527188.0,
   1549896.0,
   1572603.0,
   1605932.0,
   1623777.0,
   1426030.0,
   1434062.0,
   1431835.0,
   1444003.0,
   1465303.0,
   1484822.0,
   1505442.0,
   1533436.0,
   1561945.0,
   1587505.0,
   1605350.0,
   1623195.0,
   1427375.0,
   1439861.0,
   1427504.0,
   1444116.0,
   1465189.0,
   1483868.0,
   1506404.0,
   1534946.0,
   1563054.0,
   1586923.0,
   1604768.0,
   1622614.0,
   1390445.0,
   1412268.0,
   1425566.0,
   1444132.0,
   1463692.0,
   1484658.0,
   1507366.0,
   1536344.0,
   1564955.0,
   1586342.0,
   1604187.0,
   1622032.0,
   1392478.0,
   1414301.0,
   1461002.0,
   1486428.0,
   1511854.0,
   1485620.0,
   1508327.0,
   1537988.0,
   1567915.0,
   1585760.0,
   1603605.0,
   1621451.0,
   1400222.0,
   1433532.0,
   1462399.0,
   1487826.0,
   1513252.0,
   1504988.0,
   1526999.0,
   1549203.0,
   1567333.0,
   1585179.0,
   1603024.0,
   1620869.0,
   1412944.0,
   1438370.0,
   1463796.0,
   1474171.0,
   1483497.0,
   1505604.0,
   1527712.0,
   1549819.0,
   1566752.0,
   1584597.0,
   1602442.0,
   1629398.0,
   1417266.0,
   1436639.0,
   1459838.0,
   1462006.0,
   1484113.0,
   1506220.0,
   1528328.0,
   1550435.0,
   1560714.0,
   1583630.0,
   1606547.0,
   1629463.0,
   1417727.0,
   1436625.0,
   1455522.0,
   1462622.0,
   1484729.0,
   1506836.0,
   1528944.0,
   1556586.0,
   1574879.0,
   1591321.0,
   1606724.0,
   1629528.0,
   1418188.0,
   1437086.0,
   1443953.0,
   1465949.0,
   1487456.0,
   1510827.0,
   1534068.0,
   1556448.0,
   1574952.0,
   1591246.0,
   1606676.0,
   1629592.0,
   1400234.0,
   1422230.0,
   1444226.0,
   1466222.0,
   1488446.0,
   1511551.0,
   1533930.0,
   1556310.0,
   1575711.0,
   1591095.0,
   1606741.0,
   1629657.0,
   1400507.0,
   1422503.0,
   1444499.0,
   1466495.0,
   1489034.0,
   1511413.0,
   1533792.0,
   1556171.0,
   1578550.0,
   1590415.0,
   1606806.0,
   1629722.0],
  'g': [1424685.0,
   1446194.0,
   1467704.0,
   1444083.0,
   1468692.0,
   1493300.0,
   1504480.0,
   1527188.0,
   1549896.0,
   1572603.0,
   1605932.0,
   1623777.0,
   1426030.0,
   1434062.0,
   1431835.0,
   1444003.0,
   1465303.0,
   1484822.0,
   1505442.0,
   1533436.0,
   1561945.0,
   1587505.0,
   1605350.0,
   1623195.0,
   1427375.0,
   1439861.0,
   1427504.0,
   1444116.0,
   1465189.0,
   1483868.0,
   1506404.0,
   1534946.0,
   1563054.0,
   1586923.0,
   1604768.0,
   1622614.0,
   1390445.0,
   1412268.0,
   1425566.0,
   1444132.0,
   1463692.0,
   1484658.0,
   1507366.0,
   1536344.0,
   1564955.0,
   1586342.0,
   1604187.0,
   1622032.0,
   1392478.0,
   1414301.0,
   1461002.0,
   1486428.0,
   1511854.0,
   1485620.0,
   1508327.0,
   1537988.0,
   1567915.0,
   1585760.0,
   1603605.0,
   1621451.0,
   1400222.0,
   1433532.0,
   1462399.0,
   1487826.0,
   1513252.0,
   1504988.0,
   1526999.0,
   1549203.0,
   1567333.0,
   1585179.0,
   1603024.0,
   1620869.0,
   1412944.0,
   1438370.0,
   1463796.0,
   1474171.0,
   1483497.0,
   1505604.0,
   1527712.0,
   1549819.0,
   1566752.0,
   1584597.0,
   1602442.0,
   1629398.0,
   1417266.0,
   1436639.0,
   1459838.0,
   1462006.0,
   1484113.0,
   1506220.0,
   1528328.0,
   1550435.0,
   1560714.0,
   1583630.0,
   1606547.0,
   1629463.0,
   1417727.0,
   1436625.0,
   1455522.0,
   1462622.0,
   1484729.0,
   1506836.0,
   1528944.0,
   1556586.0,
   1574879.0,
   1591321.0,
   1606724.0,
   1629528.0,
   1418188.0,
   1437086.0,
   1443953.0,
   1465949.0,
   1487456.0,
   1510827.0,
   1534068.0,
   1556448.0,
   1574952.0,
   1591246.0,
   1606676.0,
   1629592.0,
   1400234.0,
   1422230.0,
   1444226.0,
   1466222.0,
   1488446.0,
   1511551.0,
   1533930.0,
   1556310.0,
   1575711.0,
   1591095.0,
   1606741.0,
   1629657.0,
   1400507.0,
   1422503.0,
   1444499.0,
   1466495.0,
   1489034.0,
   1511413.0,
   1533792.0,
   1556171.0,
   1578550.0,
   1590415.0,
   1606806.0,
   1629722.0],
  'b': [1424685.0,
   1446194.0,
   1467704.0,
   1444083.0,
   1468692.0,
   1493300.0,
   1504480.0,
   1527188.0,
   1549896.0,
   1572603.0,
   1605932.0,
   1623777.0,
   1426030.0,
   1434062.0,
   1431835.0,
   1444003.0,
   1465303.0,
   1484822.0,
   1505442.0,
   1533436.0,
   1561945.0,
   1587505.0,
   1605350.0,
   1623195.0,
   1427375.0,
   1439861.0,
   1427504.0,
   1444116.0,
   1465189.0,
   1483868.0,
   1506404.0,
   1534946.0,
   1563054.0,
   1586923.0,
   1604768.0,
   1622614.0,
   1390445.0,
   1412268.0,
   1425566.0,
   1444132.0,
   1463692.0,
   1484658.0,
   1507366.0,
   1536344.0,
   1564955.0,
   1586342.0,
   1604187.0,
   1622032.0,
   1392478.0,
   1414301.0,
   1461002.0,
   1486428.0,
   1511854.0,
   1485620.0,
   1508327.0,
   1537988.0,
   1567915.0,
   1585760.0,
   1603605.0,
   1621451.0,
   1400222.0,
   1433532.0,
   1462399.0,
   1487826.0,
   1513252.0,
   1504988.0,
   1526999.0,
   1549203.0,
   1567333.0,
   1585179.0,
   1603024.0,
   1620869.0,
   1412944.0,
   1438370.0,
   1463796.0,
   1474171.0,
   1483497.0,
   1505604.0,
   1527712.0,
   1549819.0,
   1566752.0,
   1584597.0,
   1602442.0,
   1629398.0,
   1417266.0,
   1436639.0,
   1459838.0,
   1462006.0,
   1484113.0,
   1506220.0,
   1528328.0,
   1550435.0,
   1560714.0,
   1583630.0,
   1606547.0,
   1629463.0,
   1417727.0,
   1436625.0,
   1455522.0,
   1462622.0,
   1484729.0,
   1506836.0,
   1528944.0,
   1556586.0,
   1574879.0,
   1591321.0,
   1606724.0,
   1629528.0,
   1418188.0,
   1437086.0,
   1443953.0,
   1465949.0,
   1487456.0,
   1510827.0,
   1534068.0,
   1556448.0,
   1574952.0,
   1591246.0,
   1606676.0,
   1629592.0,
   1400234.0,
   1422230.0,
   1444226.0,
   1466222.0,
   1488446.0,
   1511551.0,
   1533930.0,
   1556310.0,
   1575711.0,
   1591095.0,
   1606741.0,
   1629657.0,
   1400507.0,
   1422503.0,
   1444499.0,
   1466495.0,
   1489034.0,
   1511413.0,
   1533792.0,
   1556171.0,
   1578550.0,
   1590415.0,
   1606806.0,
   1629722.0],
  'mattype': ['a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457'],
  'title': 'xbaseline_Row2_Module4_Front'},
 {'Wm2': [970963.9,
   978964.1,
   983704.1999999998,
   989229.1,
   994753.9,
   984816.9,
   988507.4,
   992197.8000000002,
   978446.1999999998,
   981786.1999999998,
   985126.3000000002,
   1006142.0,
   971127.1999999998,
   978866.1,
   984199.1999999998,
   986670.0,
   981168.9,
   984859.4,
   983593.5,
   979343.3000000002,
   979385.1,
   988854.5,
   998335.9,
   1006344.0,
   971227.9,
   979185.0,
   984694.1999999998,
   988809.1,
   981211.4,
   984901.9,
   983872.8000000002,
   978442.8000000002,
   979325.4,
   989227.6,
   998844.1999999998,
   1006546.0,
   978763.0,
   986518.9,
   985189.4,
   984453.5,
   987190.9,
   987003.5,
   984856.3000000002,
   976424.9,
   979765.0,
   989505.1999999998,
   1000039.0,
   1006747.0,
   979597.8000000002,
   986887.6999999998,
   980792.6,
   985047.1,
   989301.6999999998,
   991631.0,
   983705.6,
   984817.6999999998,
   984486.4,
   989342.9,
   1003420.0,
   1006949.0,
   980432.6,
   988759.5,
   981386.1,
   985640.8000000002,
   985720.9,
   980828.9,
   984151.4,
   987441.5,
   987238.9,
   983984.1,
   1004360.0,
   1007151.0,
   972312.4,
   979307.4,
   981979.6999999998,
   986234.1999999998,
   985306.4,
   981274.8000000002,
   984597.4,
   987920.0,
   991242.6,
   993250.6,
   996526.6,
   1001085.0,
   973314.1999999998,
   980309.1999999998,
   989483.9,
   994503.9,
   999523.9,
   981720.6,
   985043.1999999998,
   987986.1999999998,
   990603.5,
   993603.6,
   996604.6,
   999605.8000000002,
   974710.1999999998,
   984897.8000000002,
   990344.3000000002,
   995364.1999999998,
   1000384.0,
   982166.4,
   985489.1,
   988207.3000000002,
   990955.4,
   993956.6,
   996957.6,
   999958.8000000002,
   976409.1999999998,
   984111.6,
   991153.6,
   996224.6,
   982555.3000000002,
   986500.6,
   990445.8000000002,
   988307.4,
   991308.5,
   994309.6,
   997310.6,
   1000312.0,
   977043.0,
   983729.0,
   983948.8000000002,
   979361.1999999998,
   983306.4,
   987251.6,
   991196.9,
   988660.3000000002,
   991661.4,
   994662.5,
   997663.6,
   1000665.0,
   977676.6999999998,
   984362.8000000002,
   976167.1,
   980112.3000000002,
   984057.5,
   988002.8000000002,
   981812.8000000002,
   984896.6,
   988960.4,
   995015.6,
   998016.6,
   1001900.0],
  'x': [0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001],
  'y': [-1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154],
  'z': [0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462],
  'r': [970963.9,
   978964.1,
   983704.2,
   989229.1,
   994753.9,
   984816.9,
   988507.4,
   992197.8,
   978446.2,
   981786.2,
   985126.3,
   1006142.0,
   971127.2,
   978866.1,
   984199.2,
   986670.0,
   981168.9,
   984859.4,
   983593.5,
   979343.3,
   979385.1,
   988854.5,
   998335.9,
   1006344.0,
   971227.9,
   979185.0,
   984694.2,
   988809.1,
   981211.4,
   984901.9,
   983872.8,
   978442.8,
   979325.4,
   989227.6,
   998844.2,
   1006546.0,
   978763.0,
   986518.9,
   985189.4,
   984453.5,
   987190.9,
   987003.5,
   984856.3,
   976424.9,
   979765.0,
   989505.2,
   1000039.0,
   1006747.0,
   979597.8,
   986887.7,
   980792.6,
   985047.1,
   989301.7,
   991631.0,
   983705.6,
   984817.7,
   984486.4,
   989342.9,
   1003420.0,
   1006949.0,
   980432.6,
   988759.5,
   981386.1,
   985640.8,
   985720.9,
   980828.9,
   984151.4,
   987441.5,
   987238.9,
   983984.1,
   1004360.0,
   1007151.0,
   972312.4,
   979307.4,
   981979.7,
   986234.2,
   985306.4,
   981274.8,
   984597.4,
   987920.0,
   991242.6,
   993250.6,
   996526.6,
   1001085.0,
   973314.2,
   980309.2,
   989483.9,
   994503.9,
   999523.9,
   981720.6,
   985043.2,
   987986.2,
   990603.5,
   993603.6,
   996604.6,
   999605.8,
   974710.2,
   984897.8,
   990344.3,
   995364.2,
   1000384.0,
   982166.4,
   985489.1,
   988207.3,
   990955.4,
   993956.6,
   996957.6,
   999958.8,
   976409.2,
   984111.6,
   991153.6,
   996224.6,
   982555.3,
   986500.6,
   990445.8,
   988307.4,
   991308.5,
   994309.6,
   997310.6,
   1000312.0,
   977043.0,
   983729.0,
   983948.8,
   979361.2,
   983306.4,
   987251.6,
   991196.9,
   988660.3,
   991661.4,
   994662.5,
   997663.6,
   1000665.0,
   977676.7,
   984362.8,
   976167.1,
   980112.3,
   984057.5,
   988002.8,
   981812.8,
   984896.6,
   988960.4,
   995015.6,
   998016.6,
   1001900.0],
  'g': [970963.9,
   978964.1,
   983704.2,
   989229.1,
   994753.9,
   984816.9,
   988507.4,
   992197.8,
   978446.2,
   981786.2,
   985126.3,
   1006142.0,
   971127.2,
   978866.1,
   984199.2,
   986670.0,
   981168.9,
   984859.4,
   983593.5,
   979343.3,
   979385.1,
   988854.5,
   998335.9,
   1006344.0,
   971227.9,
   979185.0,
   984694.2,
   988809.1,
   981211.4,
   984901.9,
   983872.8,
   978442.8,
   979325.4,
   989227.6,
   998844.2,
   1006546.0,
   978763.0,
   986518.9,
   985189.4,
   984453.5,
   987190.9,
   987003.5,
   984856.3,
   976424.9,
   979765.0,
   989505.2,
   1000039.0,
   1006747.0,
   979597.8,
   986887.7,
   980792.6,
   985047.1,
   989301.7,
   991631.0,
   983705.6,
   984817.7,
   984486.4,
   989342.9,
   1003420.0,
   1006949.0,
   980432.6,
   988759.5,
   981386.1,
   985640.8,
   985720.9,
   980828.9,
   984151.4,
   987441.5,
   987238.9,
   983984.1,
   1004360.0,
   1007151.0,
   972312.4,
   979307.4,
   981979.7,
   986234.2,
   985306.4,
   981274.8,
   984597.4,
   987920.0,
   991242.6,
   993250.6,
   996526.6,
   1001085.0,
   973314.2,
   980309.2,
   989483.9,
   994503.9,
   999523.9,
   981720.6,
   985043.2,
   987986.2,
   990603.5,
   993603.6,
   996604.6,
   999605.8,
   974710.2,
   984897.8,
   990344.3,
   995364.2,
   1000384.0,
   982166.4,
   985489.1,
   988207.3,
   990955.4,
   993956.6,
   996957.6,
   999958.8,
   976409.2,
   984111.6,
   991153.6,
   996224.6,
   982555.3,
   986500.6,
   990445.8,
   988307.4,
   991308.5,
   994309.6,
   997310.6,
   1000312.0,
   977043.0,
   983729.0,
   983948.8,
   979361.2,
   983306.4,
   987251.6,
   991196.9,
   988660.3,
   991661.4,
   994662.5,
   997663.6,
   1000665.0,
   977676.7,
   984362.8,
   976167.1,
   980112.3,
   984057.5,
   988002.8,
   981812.8,
   984896.6,
   988960.4,
   995015.6,
   998016.6,
   1001900.0],
  'b': [970963.9,
   978964.1,
   983704.2,
   989229.1,
   994753.9,
   984816.9,
   988507.4,
   992197.8,
   978446.2,
   981786.2,
   985126.3,
   1006142.0,
   971127.2,
   978866.1,
   984199.2,
   986670.0,
   981168.9,
   984859.4,
   983593.5,
   979343.3,
   979385.1,
   988854.5,
   998335.9,
   1006344.0,
   971227.9,
   979185.0,
   984694.2,
   988809.1,
   981211.4,
   984901.9,
   983872.8,
   978442.8,
   979325.4,
   989227.6,
   998844.2,
   1006546.0,
   978763.0,
   986518.9,
   985189.4,
   984453.5,
   987190.9,
   987003.5,
   984856.3,
   976424.9,
   979765.0,
   989505.2,
   1000039.0,
   1006747.0,
   979597.8,
   986887.7,
   980792.6,
   985047.1,
   989301.7,
   991631.0,
   983705.6,
   984817.7,
   984486.4,
   989342.9,
   1003420.0,
   1006949.0,
   980432.6,
   988759.5,
   981386.1,
   985640.8,
   985720.9,
   980828.9,
   984151.4,
   987441.5,
   987238.9,
   983984.1,
   1004360.0,
   1007151.0,
   972312.4,
   979307.4,
   981979.7,
   986234.2,
   985306.4,
   981274.8,
   984597.4,
   987920.0,
   991242.6,
   993250.6,
   996526.6,
   1001085.0,
   973314.2,
   980309.2,
   989483.9,
   994503.9,
   999523.9,
   981720.6,
   985043.2,
   987986.2,
   990603.5,
   993603.6,
   996604.6,
   999605.8,
   974710.2,
   984897.8,
   990344.3,
   995364.2,
   1000384.0,
   982166.4,
   985489.1,
   988207.3,
   990955.4,
   993956.6,
   996957.6,
   999958.8,
   976409.2,
   984111.6,
   991153.6,
   996224.6,
   982555.3,
   986500.6,
   990445.8,
   988307.4,
   991308.5,
   994309.6,
   997310.6,
   1000312.0,
   977043.0,
   983729.0,
   983948.8,
   979361.2,
   983306.4,
   987251.6,
   991196.9,
   988660.3,
   991661.4,
   994662.5,
   997663.6,
   1000665.0,
   977676.7,
   984362.8,
   976167.1,
   980112.3,
   984057.5,
   988002.8,
   981812.8,
   984896.6,
   988960.4,
   995015.6,
   998016.6,
   1001900.0],
  'mattype': ['a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310'],
  'title': 'xbaseline_Row2_Module4_Back'})

WITH frame¶

In [15]:
torquetubelength = 14.036
postheight = 0.03
postwidth = 0.06

#horizontale palen
post_x = -2.25 #verschuift palen van links naar rechts, hoe negatiever hoe meer naar links
z_step = 1.09 #verhoogt de palen
y_step = 9 #bepaald de afstand tussen de verschillende rijen

y = 9.1

for i in range(3):
    post_z = 2.84
    for j in range(3):
        name = 'Post{}{}'.format(i, j)
        text = '! genbox Metal_Aluminum_Anodized torquetube_row2 {} {} {} | xform -t {} -0.2 0.15 | xform -t {} {} {} ' \
               '| ' \
               'xform -rz 90'.format(
            torquetubelength, postheight, postwidth, (-torquetubelength + module.sceney) / 2.0, post_x, y, post_z)
        customObject = testopstelling.makeCustomObject(name, text)
        testopstelling.appendtoScene(radfile=scene.radfiles, customObject=customObject)
        post_z -= z_step

    y -= y_step
pileheight = 3.05
pilewidth = 0.17
piledepth = 0.08
Custom Object Name objects\Post00.rad

Custom Object Name objects\Post01.rad

Custom Object Name objects\Post02.rad

Custom Object Name objects\Post10.rad

Custom Object Name objects\Post11.rad

Custom Object Name objects\Post12.rad

Custom Object Name objects\Post20.rad

Custom Object Name objects\Post21.rad

Custom Object Name objects\Post22.rad
In [16]:
#nulpunt paal
x_value = 0
y_value = 0
name_string = 'pileZERO'
text = ('! genbox Metal_Grey pile{}row{} ' + '{} {} {} '.format(0.1, 0.1, 10)
        + '| xform -t {} {} {}'.format(x_value, y_value, 0))
customObject = testopstelling.makeCustomObject(name_string, text)
testopstelling.appendtoScene(scene.radfiles, customObject)

#verticale palen
x_offset = - 0.1
y_step = 2.15

x_value = -9.1
for i in range(3):
    y_value = -8.23
    for j in range(7):
        name_string = 'pile{}{}'.format(i, j)
        text = ('! genbox Metal_Grey pile{}row{} '.format(i, j) + '{} {} {} '.format(pilewidth, piledepth, pileheight)
                + '| xform -t {} {} {}'.format(x_value, y_value, 0))
        customObject = testopstelling.makeCustomObject(name_string, text)
        testopstelling.appendtoScene(scene.radfiles, customObject)
        y_value += 2.331

    x_value += 9
Custom Object Name objects\pileZERO.rad

Custom Object Name objects\pile00.rad

Custom Object Name objects\pile01.rad

Custom Object Name objects\pile02.rad

Custom Object Name objects\pile03.rad

Custom Object Name objects\pile04.rad

Custom Object Name objects\pile05.rad

Custom Object Name objects\pile06.rad

Custom Object Name objects\pile10.rad

Custom Object Name objects\pile11.rad

Custom Object Name objects\pile12.rad

Custom Object Name objects\pile13.rad

Custom Object Name objects\pile14.rad

Custom Object Name objects\pile15.rad

Custom Object Name objects\pile16.rad

Custom Object Name objects\pile20.rad

Custom Object Name objects\pile21.rad

Custom Object Name objects\pile22.rad

Custom Object Name objects\pile23.rad

Custom Object Name objects\pile24.rad

Custom Object Name objects\pile25.rad

Custom Object Name objects\pile26.rad

Append grass material¶

In [ ]:
# Try to run only once or it keeps adding it to the file every run
#testopstelling.addMaterial('grass', Rrefl=.0, Grefl=.170, Brefl=.0)
In [17]:
name='gras_ondergrond'
carpositionx=-2
carpositiony=-1
text='! genbox grass CenterPatch 18 25 0.1 | xform -t -10 -13 0'.format(carpositionx, carpositiony)
customObject = testopstelling.makeCustomObject(name,text)
testopstelling.appendtoScene(scene.radfiles, customObject)
Custom Object Name objects\gras_ondergrond.rad

Sanity check¶

In [18]:
#testopstelling.scene.showScene()
Rendering scene. This may take a moment...

Another way to view, but you NEED to have a single hour sun, and an updated octfile

In [ ]:
#testopstelling.gendaylit1axis(4000)
In [ ]:
#testopstelling.makeOct()
In [ ]:
#!rvu -vf views\front.vp -e .01 -pe 0.02 -vp -2 -12 14.5 x.oct
In [19]:
octfile = testopstelling.makeOct(testopstelling.getfilelist()) 
Created x.oct
In [21]:
frontscan, backscan = analysis.moduleAnalysis(scene, modWanted = 4, rowWanted =2,  sensorsx=12, sensorsy=12)
analysis.analysis(octfile, testopstelling.basename, frontscan, backscan)
Linescan in process: x_Row2_Module4_Front
Linescan in process: x_Row2_Module4_Back
Saved: results\irr_x_Row2_Module4.csv
Out[21]:
({'Wm2': [1195255.3333333333,
   1215843.3333333333,
   1248228.6666666667,
   1276733.3333333333,
   1296102.6666666667,
   1330283.0,
   1350262.0,
   1379119.0,
   1397073.6666666667,
   1411250.6666666667,
   1444171.0,
   1475669.3333333333,
   1148929.3333333333,
   1173230.3333333333,
   1217874.3333333333,
   1243390.0,
   1247352.0,
   1273513.0,
   1291171.6666666667,
   1317347.0,
   1343522.3333333333,
   1365423.0,
   1392374.6666666667,
   1419326.3333333333,
   1152113.6666666667,
   1188065.3333333333,
   1220042.6666666667,
   1229677.0,
   1248809.0,
   1269153.6666666667,
   1293330.3333333333,
   1318802.0,
   1341854.0,
   1368805.6666666667,
   1395757.3333333333,
   1409198.6666666667,
   1168363.3333333333,
   1192938.3333333333,
   1217513.0,
   1262850.0,
   1289796.6666666667,
   1316744.0,
   1343690.6666666667,
   1327977.6666666667,
   1353815.0,
   1375129.6666666667,
   1389701.3333333333,
   1410449.3333333333,
   1169771.0,
   1200531.0,
   1233357.3333333333,
   1263282.3333333333,
   1282021.3333333333,
   1291210.6666666667,
   1302486.3333333333,
   1328323.0,
   1354160.3333333333,
   1379997.6666666667,
   1396311.6666666667,
   1411699.6666666667,
   1169992.0,
   1203529.0,
   1236768.0,
   1263715.0,
   1278429.3333333333,
   1282823.6666666667,
   1302832.0,
   1328669.0,
   1354506.0,
   1380343.6666666667,
   1406023.6666666667,
   1430192.6666666667,
   1168469.6666666667,
   1210253.6666666667,
   1237200.6666666667,
   1264147.3333333333,
   1268111.3333333333,
   1277340.0,
   1303177.3333333333,
   1330195.6666666667,
   1356467.0,
   1381773.6666666667,
   1406182.3333333333,
   1430351.6666666667,
   1152448.3333333333,
   1173592.3333333333,
   1198616.0,
   1230564.3333333333,
   1256002.6666666667,
   1280356.6666666667,
   1304182.6666666667,
   1330762.3333333333,
   1356947.6666666667,
   1382101.3333333333,
   1406341.3333333333,
   1430510.6666666667,
   1152032.6666666667,
   1175490.6666666667,
   1203610.3333333333,
   1231802.6666666667,
   1257635.0,
   1281783.0,
   1305244.0,
   1331210.3333333333,
   1357496.6666666667,
   1382331.3333333333,
   1406500.6666666667,
   1430669.3333333333,
   1151616.6666666667,
   1173665.3333333333,
   1207150.6666666667,
   1233040.3333333333,
   1258930.0,
   1283455.0,
   1304731.3333333333,
   1331418.0,
   1358321.3333333333,
   1382490.3333333333,
   1406659.3333333333,
   1430828.3333333333,
   1151201.3333333333,
   1172345.3333333333,
   1204773.6666666667,
   1236391.6666666667,
   1260167.6666666667,
   1286057.3333333333,
   1311816.3333333333,
   1330227.6666666667,
   1358480.3333333333,
   1382649.3333333333,
   1406818.3333333333,
   1420067.0,
   1150785.6666666667,
   1169076.0,
   1201220.6666666667,
   1233366.0,
   1273458.0,
   1298729.0,
   1316625.6666666667,
   1334163.6666666667,
   1330815.3333333333,
   1357049.6666666667,
   1387304.0,
   1418424.6666666667],
  'x': [-0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021,
   -0.021],
  'y': [-1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154],
  'z': [0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462],
  'r': [1153490.0,
   1175033.0,
   1208240.0,
   1237423.0,
   1257342.0,
   1291555.0,
   1312269.0,
   1342095.0,
   1360702.0,
   1375522.0,
   1408918.0,
   1440864.0,
   1106336.0,
   1129736.0,
   1176521.0,
   1201170.0,
   1207631.0,
   1232959.0,
   1252168.0,
   1277552.0,
   1302937.0,
   1328542.0,
   1354766.0,
   1380990.0,
   1109402.0,
   1146416.0,
   1178616.0,
   1189754.0,
   1209169.0,
   1230315.0,
   1254261.0,
   1279606.0,
   1305610.0,
   1331834.0,
   1358057.0,
   1373412.0,
   1125332.0,
   1149002.0,
   1172671.0,
   1221717.0,
   1247786.0,
   1273856.0,
   1299925.0,
   1289335.0,
   1314420.0,
   1336325.0,
   1353344.0,
   1374631.0,
   1127180.0,
   1158686.0,
   1192363.0,
   1222136.0,
   1241169.0,
   1251994.0,
   1264585.0,
   1289670.0,
   1314756.0,
   1339841.0,
   1358262.0,
   1375850.0,
   1127444.0,
   1162427.0,
   1196485.0,
   1222554.0,
   1238134.0,
   1244838.0,
   1264921.0,
   1290006.0,
   1315091.0,
   1340177.0,
   1369305.0,
   1392843.0,
   1125434.0,
   1170834.0,
   1196903.0,
   1222972.0,
   1229330.0,
   1240171.0,
   1265256.0,
   1292497.0,
   1319182.0,
   1344942.0,
   1369460.0,
   1392998.0,
   1109058.0,
   1129406.0,
   1154056.0,
   1189272.0,
   1214404.0,
   1239823.0,
   1265416.0,
   1293286.0,
   1319989.0,
   1345751.0,
   1369615.0,
   1393152.0,
   1108658.0,
   1132866.0,
   1162251.0,
   1190469.0,
   1215492.0,
   1240618.0,
   1265830.0,
   1293870.0,
   1321018.0,
   1346232.0,
   1369770.0,
   1393307.0,
   1108258.0,
   1129991.0,
   1166644.0,
   1191665.0,
   1216686.0,
   1241595.0,
   1266300.0,
   1294002.0,
   1322848.0,
   1346386.0,
   1369924.0,
   1393462.0,
   1107858.0,
   1128206.0,
   1162631.0,
   1193494.0,
   1217882.0,
   1242903.0,
   1272196.0,
   1290051.0,
   1323003.0,
   1346541.0,
   1370079.0,
   1383974.0,
   1107458.0,
   1128182.0,
   1159202.0,
   1190223.0,
   1232548.0,
   1257664.0,
   1276619.0,
   1293868.0,
   1292928.0,
   1319315.0,
   1350326.0,
   1382159.0],
  'g': [1277351.0,
   1295930.0,
   1326650.0,
   1353711.0,
   1372110.0,
   1405982.0,
   1424692.0,
   1451540.0,
   1468140.0,
   1481119.0,
   1513093.0,
   1543478.0,
   1233552.0,
   1259643.0,
   1300061.0,
   1327299.0,
   1326115.0,
   1353928.0,
   1368291.0,
   1396030.0,
   1423769.0,
   1438587.0,
   1466983.0,
   1495379.0,
   1236971.0,
   1270830.0,
   1302376.0,
   1308895.0,
   1327398.0,
   1346002.0,
   1370579.0,
   1396337.0,
   1413755.0,
   1442151.0,
   1470547.0,
   1480254.0,
   1254000.0,
   1280376.0,
   1306752.0,
   1344808.0,
   1373503.0,
   1402199.0,
   1430895.0,
   1404847.0,
   1432180.0,
   1452290.0,
   1461921.0,
   1481568.0,
   1254540.0,
   1283850.0,
   1315022.0,
   1345268.0,
   1363396.0,
   1369272.0,
   1377880.0,
   1405212.0,
   1432545.0,
   1459878.0,
   1471936.0,
   1482881.0,
   1254676.0,
   1285386.0,
   1317033.0,
   1345729.0,
   1358681.0,
   1358406.0,
   1378246.0,
   1405578.0,
   1432911.0,
   1460244.0,
   1479094.0,
   1504519.0,
   1254114.0,
   1288798.0,
   1317494.0,
   1346190.0,
   1345314.0,
   1351278.0,
   1378611.0,
   1405194.0,
   1430650.0,
   1455063.0,
   1479261.0,
   1504686.0,
   1238854.0,
   1261583.0,
   1287355.0,
   1312678.0,
   1338728.0,
   1360972.0,
   1381294.0,
   1405320.0,
   1430484.0,
   1454437.0,
   1479428.0,
   1504854.0,
   1238407.0,
   1260335.0,
   1285882.0,
   1313999.0,
   1341440.0,
   1363651.0,
   1383640.0,
   1405498.0,
   1430082.0,
   1454170.0,
   1479596.0,
   1505021.0,
   1237960.0,
   1260625.0,
   1287702.0,
   1315319.0,
   1342936.0,
   1366703.0,
   1381178.0,
   1405856.0,
   1428913.0,
   1454338.0,
   1479763.0,
   1505188.0,
   1237514.0,
   1260243.0,
   1288676.0,
   1321778.0,
   1344257.0,
   1371874.0,
   1390658.0,
   1410176.0,
   1429080.0,
   1454505.0,
   1479930.0,
   1491923.0,
   1237067.0,
   1250492.0,
   1284876.0,
   1319260.0,
   1354974.0,
   1380527.0,
   1396246.0,
   1414349.0,
   1406098.0,
   1432058.0,
   1460860.0,
   1490617.0],
  'b': [1154925.0,
   1176567.0,
   1209796.0,
   1239066.0,
   1258856.0,
   1293312.0,
   1313825.0,
   1343722.0,
   1362379.0,
   1377111.0,
   1410502.0,
   1442666.0,
   1106900.0,
   1130312.0,
   1177041.0,
   1201701.0,
   1208310.0,
   1233652.0,
   1253056.0,
   1278459.0,
   1303861.0,
   1329140.0,
   1355375.0,
   1381610.0,
   1109968.0,
   1146950.0,
   1179136.0,
   1190382.0,
   1209860.0,
   1231144.0,
   1255151.0,
   1280463.0,
   1306197.0,
   1332432.0,
   1358668.0,
   1373930.0,
   1125758.0,
   1149437.0,
   1173116.0,
   1222025.0,
   1248101.0,
   1274177.0,
   1300252.0,
   1289751.0,
   1314845.0,
   1336774.0,
   1353839.0,
   1375149.0,
   1127593.0,
   1159057.0,
   1192687.0,
   1222443.0,
   1241499.0,
   1252366.0,
   1264994.0,
   1290087.0,
   1315180.0,
   1340274.0,
   1358737.0,
   1376368.0,
   1127856.0,
   1162774.0,
   1196786.0,
   1222862.0,
   1238473.0,
   1245227.0,
   1265329.0,
   1290423.0,
   1315516.0,
   1340610.0,
   1369672.0,
   1393216.0,
   1125861.0,
   1171129.0,
   1197205.0,
   1223280.0,
   1229690.0,
   1240571.0,
   1265665.0,
   1292896.0,
   1319569.0,
   1345316.0,
   1369826.0,
   1393371.0,
   1109433.0,
   1129788.0,
   1154437.0,
   1189743.0,
   1214876.0,
   1240275.0,
   1265838.0,
   1293681.0,
   1320370.0,
   1346116.0,
   1369981.0,
   1393526.0,
   1109033.0,
   1133271.0,
   1162698.0,
   1190940.0,
   1215973.0,
   1241080.0,
   1266262.0,
   1294263.0,
   1321390.0,
   1346592.0,
   1370136.0,
   1393680.0,
   1108632.0,
   1130380.0,
   1167106.0,
   1192137.0,
   1217168.0,
   1242067.0,
   1266716.0,
   1294396.0,
   1323203.0,
   1346747.0,
   1370291.0,
   1393835.0,
   1108232.0,
   1128587.0,
   1163014.0,
   1193903.0,
   1218364.0,
   1243395.0,
   1272595.0,
   1290456.0,
   1323358.0,
   1346902.0,
   1370446.0,
   1384304.0,
   1107832.0,
   1128554.0,
   1159584.0,
   1190615.0,
   1232852.0,
   1257996.0,
   1277012.0,
   1294274.0,
   1293420.0,
   1319776.0,
   1350726.0,
   1382498.0],
  'mattype': ['a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a0.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457',
   'a3.1.a1.test-module.6457'],
  'title': 'x_Row2_Module4_Front'},
 {'Wm2': [701455.5333333333,
   799837.9333333332,
   806450.6666666666,
   822628.2000000001,
   787596.9,
   755044.7999999999,
   517192.8333333333,
   849387.4,
   849018.1666666666,
   837164.9666666667,
   846763.5333333332,
   854226.5333333332,
   687597.5333333333,
   792475.0333333333,
   784291.8999999999,
   793121.7333333334,
   787581.7666666667,
   793419.8333333334,
   498851.8,
   843585.2333333334,
   845573.5333333333,
   848940.2666666666,
   831547.2666666666,
   837970.1,
   686197.0000000001,
   781070.1666666666,
   786796.8333333334,
   773481.0666666668,
   779319.1666666666,
   740387.6000000001,
   497011.89999999997,
   831506.6333333333,
   848474.4666666667,
   817527.7999999999,
   823950.6666666666,
   830373.5,
   688014.3333333333,
   785908.3333333334,
   792697.2000000001,
   771360.6666666666,
   777873.3333333334,
   754399.6333333333,
   513573.39999999997,
   835428.0333333333,
   812460.4666666668,
   816667.2333333334,
   831468.7000000001,
   836728.1666666666,
   696815.6,
   783537.0333333332,
   766029.4333333332,
   772542.1,
   779054.8333333334,
   750678.4333333332,
   761096.9333333332,
   835696.3333333334,
   812614.5333333333,
   826377.2666666666,
   831636.8333333334,
   836896.2999999999,
   685706.4333333332,
   805032.2333333334,
   776469.2333333334,
   782466.5333333333,
   780236.3333333334,
   748349.9666666667,
   494701.06666666665,
   830288.7999999999,
   830076.2333333334,
   836584.7999999999,
   831804.8666666667,
   837064.3666666666,
   683444.1666666666,
   774212.2999999999,
   776476.6,
   785117.2000000001,
   781475.9333333332,
   787648.7666666666,
   503200.56666666665,
   812412.1,
   818920.6666666666,
   825429.2333333334,
   821136.9,
   824945.5666666668,
   685577.7666666666,
   767843.4,
   776484.0333333333,
   762804.1333333333,
   773701.3000000002,
   785003.4333333332,
   523097.5,
   826771.4666666667,
   837731.2000000001,
   838244.4666666667,
   828469.1333333333,
   832277.9,
   689586.0,
   808803.6666666666,
   762214.4,
   766331.5,
   770448.6,
   733598.3666666666,
   499679.96666666673,
   828993.5,
   836046.1333333333,
   843098.7666666666,
   827828.1666666666,
   832398.6333333333,
   691924.1,
   813175.4666666668,
   770598.5666666668,
   781735.0,
   794785.6999999998,
   753850.7999999999,
   497193.3333333333,
   842597.0666666668,
   835182.8333333334,
   830069.4,
   830119.1666666666,
   834689.5333333333,
   739898.1999999998,
   751991.7999999999,
   764085.3333333334,
   776178.9,
   778547.5666666668,
   785248.6333333334,
   509406.5,
   833534.8333333334,
   835586.8333333334,
   827839.7333333334,
   832410.1333333333,
   814597.8333333334,
   711246.4,
   801605.6666666666,
   778835.4,
   788392.8000000002,
   783704.8666666667,
   787485.7666666666,
   515821.86666666664,
   836064.5666666668,
   855065.3999999999,
   861721.6000000001,
   814460.2000000001,
   817983.3666666666],
  'x': [0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001,
   0.001],
  'y': [-1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.353846,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.507692,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.661538,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.815385,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -1.969231,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.123077,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.276923,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.430769,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.584615,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.738462,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -2.892308,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154,
   -3.046154],
  'z': [0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462,
   0.8615385,
   1.023077,
   1.184615,
   1.346154,
   1.507692,
   1.669231,
   1.830769,
   1.992308,
   2.153846,
   2.315385,
   2.476923,
   2.638462],
  'r': [684629.4,
   764994.5,
   769645.1,
   785084.2,
   751398.6,
   719166.2,
   480855.3,
   836159.9,
   817481.4,
   804828.9,
   814941.1,
   822640.6,
   670344.7,
   756808.6,
   746760.6,
   755167.9,
   750235.9,
   755797.1,
   461805.5,
   830448.1,
   813381.3,
   816619.8,
   798980.6,
   805151.9,
   668864.8,
   744019.1,
   749145.7,
   736803.8,
   742365.1,
   703369.4,
   459809.4,
   817785.1,
   816171.8,
   785510.2,
   791681.5,
   797852.8,
   670457.2,
   749909.9,
   756387.8,
   733340.7,
   739532.4,
   717428.9,
   476141.0,
   821576.3,
   780185.8,
   784225.4,
   798334.3,
   803384.2,
   679071.2,
   747647.2,
   728272.2,
   734463.9,
   740655.6,
   713541.2,
   723444.2,
   821982.8,
   780333.8,
   793445.8,
   798495.8,
   803545.6,
   667766.8,
   768816.2,
   737959.1,
   743714.1,
   741778.9,
   711158.4,
   457155.2,
   816848.9,
   797495.8,
   803748.9,
   798657.1,
   803707.0,
   666068.3,
   736345.2,
   737966.1,
   746178.1,
   744028.4,
   749905.4,
   465602.9,
   780525.0,
   786778.1,
   793031.1,
   787761.9,
   791415.8,
   667923.5,
   729761.1,
   737973.1,
   724710.0,
   735958.8,
   747386.9,
   484013.2,
   813148.6,
   805121.8,
   805154.3,
   794796.1,
   798450.1,
   672248.7,
   772558.8,
   724149.6,
   728061.2,
   731972.6,
   696091.1,
   462082.3,
   796724.2,
   803502.3,
   810280.4,
   794739.8,
   799127.6,
   674441.3,
   776734.7,
   732374.9,
   742939.6,
   755362.3,
   715308.1,
   459704.1,
   828325.4,
   803116.9,
   797401.9,
   796939.2,
   801326.9,
   703197.4,
   714691.1,
   726184.8,
   737678.5,
   740845.2,
   747221.7,
   471219.1,
   801532.1,
   803505.4,
   794750.9,
   799138.6,
   781701.9,
   692533.5,
   765387.8,
   740793.9,
   749884.4,
   745696.1,
   749350.6,
   478274.2,
   821517.2,
   822424.7,
   828826.8,
   780888.5,
   784719.9],
  'g': [734229.8,
   867173.4,
   878598.9,
   896223.8,
   858986.9,
   825735.8,
   588713.5,
   871835.9,
   909806.2,
   900390.4,
   909136.3,
   915800.2,
   721726.7,
   861800.1,
   858091.7,
   867752.4,
   861772.8,
   868160.8,
   572351.2,
   865880.4,
   908223.4,
   911839.6,
   895893.1,
   902812.9,
   720683.4,
   853808.9,
   860832.3,
   846343.8,
   852731.9,
   814107.8,
   570814.1,
   855684.4,
   911339.2,
   880788.8,
   887708.7,
   894628.5,
   722990.1,
   856003.9,
   863398.3,
   846853.6,
   854003.6,
   827929.4,
   587946.0,
   859895.4,
   875482.9,
   880016.1,
   896982.4,
   902656.2,
   731922.4,
   853421.1,
   841000.6,
   848150.6,
   855300.8,
   824613.2,
   836057.8,
   859515.4,
   875648.9,
   891489.8,
   897163.7,
   902837.6,
   721365.6,
   875450.4,
   852793.8,
   859303.9,
   856597.9,
   822318.9,
   569465.5,
   853962.1,
   893499.5,
   900505.4,
   897345.0,
   903018.9,
   717951.1,
   849067.8,
   852801.9,
   862291.9,
   855782.1,
   862541.9,
   578041.6,
   874485.7,
   881491.6,
   888497.5,
   887262.2,
   891377.6,
   720733.9,
   843320.1,
   852810.1,
   838449.2,
   848616.9,
   859645.0,
   600897.8,
   850702.4,
   901426.4,
   903183.6,
   895184.9,
   899300.4,
   724120.5,
   879287.6,
   837801.1,
   842326.4,
   846851.8,
   808076.8,
   574310.8,
   892024.3,
   899613.2,
   907202.1,
   893427.1,
   898359.8,
   726702.3,
   884040.4,
   846251.9,
   858538.6,
   872813.6,
   830385.3,
   571724.9,
   867817.5,
   897636.0,
   894400.1,
   895899.7,
   900832.2,
   812537.5,
   825818.4,
   839099.2,
   852380.1,
   853416.9,
   860762.4,
   584984.8,
   895864.8,
   898070.2,
   893439.6,
   898372.2,
   879691.5,
   746562.6,
   871688.3,
   853877.4,
   864355.8,
   859095.4,
   863214.6,
   589966.2,
   860762.4,
   918154.6,
   925301.9,
   880990.5,
   883838.0],
  'b': [685507.4,
   767345.9,
   771108.0,
   786576.6,
   752405.2,
   720232.4,
   482009.7,
   840166.4,
   819766.9,
   806275.6,
   816213.2,
   824238.8,
   670721.2,
   758816.4,
   748023.4,
   756444.9,
   750736.6,
   756301.6,
   462398.7,
   834427.2,
   815115.9,
   818361.4,
   799768.1,
   805945.5,
   669042.8,
   745382.5,
   750412.5,
   737295.6,
   742860.5,
   703685.6,
   460412.2,
   821050.4,
   817912.4,
   786284.4,
   792461.8,
   798639.2,
   670595.7,
   751811.2,
   758305.5,
   733887.7,
   740084.0,
   717840.6,
   476633.2,
   824812.4,
   781712.7,
   785760.2,
   799089.4,
   804144.1,
   679453.2,
   749542.8,
   728815.5,
   735011.8,
   741208.1,
   713880.9,
   723788.8,
   825590.8,
   781860.9,
   794196.2,
   799251.0,
   804305.7,
   667986.9,
   770830.1,
   738654.8,
   744381.6,
   742332.2,
   711572.6,
   457482.5,
   820055.4,
   799233.4,
   805500.1,
   799412.5,
   804467.2,
   666313.1,
   737223.9,
   738661.8,
   746881.6,
   744617.3,
   750499.0,
   465957.2,
   782225.6,
   788492.3,
   794759.1,
   788386.6,
   792043.3,
   668075.9,
   730449.0,
   738668.9,
   725253.2,
   736528.2,
   747978.4,
   484381.5,
   816463.4,
   806645.4,
   806395.5,
   795426.4,
   799083.2,
   672388.8,
   774564.6,
   724692.5,
   728606.9,
   732521.4,
   696627.2,
   462646.8,
   798232.0,
   805022.9,
   811813.8,
   795317.6,
   799708.5,
   674628.7,
   778751.3,
   733168.9,
   743726.8,
   756181.2,
   715859.0,
   460151.0,
   831648.3,
   804795.6,
   798406.2,
   797518.6,
   801909.5,
   703959.7,
   715465.9,
   726972.0,
   738478.1,
   741380.6,
   747761.8,
   472015.6,
   803207.6,
   805184.9,
   795328.7,
   799719.6,
   782400.1,
   694643.1,
   767740.9,
   741834.9,
   750938.2,
   746323.1,
   749892.1,
   479225.2,
   825914.1,
   824616.9,
   831036.1,
   781501.6,
   785392.2],
  'mattype': ['a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a0.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310',
   'a3.1.a1.test-module.2310'],
  'title': 'x_Row2_Module4_Back'})

2. Hourly Irradiance (1-axis method)¶

Rerunning weatherfile to do only 1 day

In [27]:
metdata = testopstelling.readWeatherFile(epwfile, coerce_year=2021, starttime='2021-06-01', endtime='2021-06-01')
8760 line in WeatherFile. Assuming this is a standard hourly WeatherFile for the year for purposes of saving Gencumulativesky temporary weather files in EPW folder.
Coercing year to 2021
Filtering dates
Saving file EPWs\metdata_temp.csv, # points: 8760
Calculating Sun position for Metdata that is right-labeled  with a delta of -30 mins. i.e. 12 is 11:30 sunpos
In [22]:
# -- establish tracking angles
fixed_tilt_angle = 90 # Vertical
cumulativesky = False # Want to do hourly simulations

trackerParams = {
             'cumulativesky':cumulativesky,
             'azimuth': azimuth_ang,
             'fixed_tilt_angle': fixed_tilt_angle
             }
In [28]:
trackerdict = testopstelling.set1axis(**trackerParams)
In [29]:
trackerdict = testopstelling.makeScene1axis(module=moduletype,sceneDict=sceneDict)
Making ~14 .rad files for gendaylit 1-axis workflow (this takes a minute..)
14 Radfiles created in /objects/
In [32]:
trackerdict = testopstelling.gendaylit1axis()
Creating ~14 skyfiles. 
Created 14 skyfiles in /skies/
In [33]:
trackerdict = testopstelling.makeOct1axis()
Making 14 octfiles in root directory.
Created 1axis_2021-06-01_0600.oct
Created 1axis_2021-06-01_0700.oct
Created 1axis_2021-06-01_0800.oct
Created 1axis_2021-06-01_0900.oct
Created 1axis_2021-06-01_1000.oct
Created 1axis_2021-06-01_1100.oct
Created 1axis_2021-06-01_1200.oct
Created 1axis_2021-06-01_1300.oct
Created 1axis_2021-06-01_1400.oct
Created 1axis_2021-06-01_1500.oct
Created 1axis_2021-06-01_1600.oct
Created 1axis_2021-06-01_1700.oct
Created 1axis_2021-06-01_1800.oct
Created 1axis_2021-06-01_1900.oct

Hourly baseline without racking¶

In [ ]:
trackerdict = demo.analysis1axis(customname = 'Baseline', sensorsy=2, sensorsx=2)

@Chris: How to append the objects here like in the fixed tilt routine above. Thanks.¶

In [ ]:
# ADD GEOMETRY HERE
In [ ]:
#redo Oct with the new geometry
trackerdict = testopstelling.makeOct1axis()
In [ ]:
trackerdict = demo.analysis1axis(sensorsy=2, sensorsx=2)